home *** CD-ROM | disk | FTP | other *** search
/ This Disc Bytes! / Power Computing - The Disc 2 - This Disc Bytes.ISO / mac / CodeWarrior 7 Lite for 68K / MacOS Support / Headers / ANSI Headers / iostream < prev    next >
Text File  |  1995-08-02  |  620b  |  34 lines

  1. // iostream standard header
  2. #ifndef _IOSTREAM_
  3. #define _IOSTREAM_
  4. #include <fstream>
  5.  
  6. #if __MWERKS__
  7. #pragma options align=mac68k
  8. #pragma direct_destruction off
  9. #endif
  10.  
  11.         // standard stream declarations
  12. extern istream cin;
  13. extern ostream cout;
  14. extern ostream cerr;
  15. extern ostream clog;
  16. static ios::Init _Ios_init;
  17.  
  18. #if __MWERKS__
  19. #pragma options align=reset
  20. #pragma direct_destruction reset
  21. #endif
  22.  
  23. #endif
  24.  
  25. /*
  26.  * Copyright (c) 1994 by P.J. Plauger.  ALL RIGHTS RESERVED. 
  27.  * Consult your license regarding permissions and restrictions.
  28.  */
  29.  
  30. /* Change log:
  31.  *94June04 PlumHall baseline
  32.  *94Oct07 Inserted MW changes.
  33.  */
  34.